aboutsummaryrefslogtreecommitdiff
path: root/src/routes/user/[user]/+page.gql
blob: 9175967583243f49b7b2a81ad57c74b04b0b3af5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query Profile($id: Int!) {
	User(id: $id) {
		id

		badges {
			id
		}

		preferences {
			created_at
			updated_at
			user_id
			pinned_hololive_streams
			hide_missing_badges
			biography
			badge_wall_css
			hide_awc_badges
			pinned_badge_wall_categories
		}
	}
}